* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: #f4f4f4;
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
  .navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}

/*------------------------------------------------Image section--------------------------------------*/
.career-header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px; /* Fixed navbar ka height adjust karne ke liye */
}

.career-image {
  background-image: url('../Uploads/career3.jpg');
  background-size: cover;
  background-position: center;
  height: 580px;
  width: 100%;
}

.career-breadcrumb {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.career-breadcrumb a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.career-breadcrumb a:hover {
  color: #0056b3;
}

.black-line {
  width: 100%;
  height: 2px;
  background-color: #514e4e;
  border: none;
}

@media (max-width: 768px) {
  .career-image {
    height: 200px;
  }
  .career-breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .career-image {
    height: 150px;
  }
  .career-breadcrumb {
    font-size: 14px;
  }
}


/*------------------------------------------------paragraph section--------------------------------------*/

/* Main Section */
.career-full-section {
  padding: 80px 40px;
  background-color: #f8f9fa;
  text-align: center;
}

/* Zoom Heading */
.main-career-heading {
  color:#ff6a00 ;
  font-size: 3.0em;
  font-weight: bold;
  margin-bottom: 60px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.main-career-heading.zoomed {
  transform: scale(1);
  opacity: 1;
}

/* Flex Layout */
.career-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side */
.career-left {
  flex: 1 1 500px;
  max-width: 550px;
  text-align: center;
}

.career-left img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.career-caption {
  font-style: italic;
  font-size: 1.1em;
  color: #555;
  margin-top: 15px;
  line-height: 1.6;
}

/* Right Side */
.career-right {
  flex: 1 1 500px;
  max-width: 550px;
  text-align: left;
}

.career-subheading {
  font-size: 2em;
  margin-bottom: 20px;
  color: #222;
}

.career-right p {
  font-size: 1.13em;
  line-height: 1.7;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-career-heading {
    font-size: 2.5em;
  }

  .career-container {
    flex-direction: column;
    gap: 40px;
  }

  .career-right,
  .career-left {
    max-width: 100%;
    text-align: center;
  }

  .career-right p {
    text-align: left;
  }
}


/*---------------------------------------------------Main section------------------------------------------*/

.centered-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.center-content {
  max-width: 900px;
  margin: auto;
}

.center-content img {
  width: 100%;
  max-width: 700px; /* ✅ Bigger Image */
  height: auto;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.center-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #222;
}

.center-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  text-align: justify; /* ✅ Better alignment */
  padding: 0 15px;
}
.center-content a {
  color: #007bff; /* Change link color */
  text-decoration: none;
  font-weight: bold;
}

.center-content a:hover {
  text-decoration: underline;
}


/* ✅ Responsive for smaller screens */
@media (max-width: 600px) {
  .center-content img {
    max-width: 100%;
  }

  .center-content h3 {
    font-size: 24px;
  }

  .center-content p {
    font-size: 15px;
    padding: 0 10px;
  }
}

/*------------------------------------------------Footer section--------------------------------------*/

.footer {
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #d35400;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #d35400;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}


